home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / include / netinet / RCS / ip_var.h,v < prev    next >
Text File  |  1988-06-29  |  4KB  |  151 lines

  1. head     1.2;
  2. access   ;
  3. symbols  ;
  4. locks    ; strict;
  5. comment  @ * @;
  6.  
  7.  
  8. 1.2
  9. date     88.06.29.15.11.10;  author ouster;  state Exp;
  10. branches ;
  11. next     1.1;
  12.  
  13. 1.1
  14. date     88.06.21.11.59.29;  author ouster;  state Exp;
  15. branches ;
  16. next     ;
  17.  
  18.  
  19. desc
  20. @@
  21.  
  22.  
  23. 1.2
  24. log
  25. @Add ifdefs to keep files from being processed twice.
  26. @
  27. text
  28. @/*
  29.  * Copyright (c) 1982, 1986 Regents of the University of California.
  30.  * All rights reserved.
  31.  *
  32.  * Redistribution and use in source and binary forms are permitted
  33.  * provided that this notice is preserved and that due credit is given
  34.  * to the University of California at Berkeley. The name of the University
  35.  * may not be used to endorse or promote products derived from this
  36.  * software without specific prior written permission. This software
  37.  * is provided ``as is'' without express or implied warranty.
  38.  *
  39.  *    @@(#)ip_var.h    7.4 (Berkeley) 1/7/88
  40.  */
  41.  
  42. #ifndef _IP_VAR
  43. #define _IP_VAR
  44.  
  45. /*
  46.  * Overlay for ip header used by other protocols (tcp, udp).
  47.  */
  48. struct ipovly {
  49.     caddr_t    ih_next, ih_prev;    /* for protocol sequence q's */
  50.     u_char    ih_x1;            /* (unused) */
  51.     u_char    ih_pr;            /* protocol */
  52.     short    ih_len;            /* protocol length */
  53.     struct    in_addr ih_src;        /* source internet address */
  54.     struct    in_addr ih_dst;        /* destination internet address */
  55. };
  56.  
  57. /*
  58.  * Ip reassembly queue structure.  Each fragment
  59.  * being reassembled is attached to one of these structures.
  60.  * They are timed out after ipq_ttl drops to 0, and may also
  61.  * be reclaimed if memory becomes tight.
  62.  */
  63. struct ipq {
  64.     struct    ipq *next,*prev;    /* to other reass headers */
  65.     u_char    ipq_ttl;        /* time for reass q to live */
  66.     u_char    ipq_p;            /* protocol of this fragment */
  67.     u_short    ipq_id;            /* sequence id for reassembly */
  68.     struct    ipasfrag *ipq_next,*ipq_prev;
  69.                     /* to ip headers of fragments */
  70.     struct    in_addr ipq_src,ipq_dst;
  71. };
  72.  
  73. /*
  74.  * Ip header, when holding a fragment.
  75.  *
  76.  * Note: ipf_next must be at same offset as ipq_next above
  77.  */
  78. struct    ipasfrag {
  79. #if BYTE_ORDER == LITTLE_ENDIAN 
  80.     u_char    ip_hl:4,
  81.         ip_v:4;
  82. #endif
  83. #if BYTE_ORDER == BIG_ENDIAN 
  84.     u_char    ip_v:4,
  85.         ip_hl:4;
  86. #endif
  87.     u_char    ipf_mff;        /* copied from (ip_off&IP_MF) */
  88.     short    ip_len;
  89.     u_short    ip_id;
  90.     short    ip_off;
  91.     u_char    ip_ttl;
  92.     u_char    ip_p;
  93.     u_short    ip_sum;
  94.     struct    ipasfrag *ipf_next;    /* next fragment */
  95.     struct    ipasfrag *ipf_prev;    /* previous fragment */
  96. };
  97.  
  98. /*
  99.  * Structure stored in mbuf in inpcb.ip_options
  100.  * and passed to ip_output when ip options are in use.
  101.  * The actual length of the options (including ipopt_dst)
  102.  * is in m_len.
  103.  */
  104. #define MAX_IPOPTLEN    40
  105.  
  106. struct ipoption {
  107.     struct    in_addr ipopt_dst;    /* first-hop dst if source routed */
  108.     char    ipopt_list[MAX_IPOPTLEN];    /* options proper */
  109. };
  110.  
  111. struct    ipstat {
  112.     long    ips_total;        /* total packets received */
  113.     long    ips_badsum;        /* checksum bad */
  114.     long    ips_tooshort;        /* packet too short */
  115.     long    ips_toosmall;        /* not enough data */
  116.     long    ips_badhlen;        /* ip header length < data size */
  117.     long    ips_badlen;        /* ip length < ip header length */
  118.     long    ips_fragments;        /* fragments received */
  119.     long    ips_fragdropped;    /* frags dropped (dups, out of space) */
  120.     long    ips_fragtimeout;    /* fragments timed out */
  121.     long    ips_forward;        /* packets forwarded */
  122.     long    ips_cantforward;    /* packets rcvd for unreachable dest */
  123.     long    ips_redirectsent;    /* packets forwarded on same net */
  124. };
  125.  
  126. #ifdef KERNEL
  127. /* flags passed to ip_output as last parameter */
  128. #define    IP_FORWARDING        0x1        /* most of ip header exists */
  129. #define    IP_ROUTETOIF        SO_DONTROUTE    /* bypass routing tables */
  130. #define    IP_ALLOWBROADCAST    SO_BROADCAST    /* can send broadcast packets */
  131.  
  132. struct    ipstat    ipstat;
  133. struct    ipq    ipq;            /* ip reass. queue */
  134. u_short    ip_id;                /* ip packet ctr, for ids */
  135.  
  136. struct    mbuf *ip_srcroute();
  137. #endif
  138.  
  139. #endif _IP_VAR
  140. @
  141.  
  142.  
  143. 1.1
  144. log
  145. @Initial revision
  146. @
  147. text
  148. @d15 3
  149. d111 2
  150. @
  151.